home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / util / text / xes.lha / XES / REXX / AddLibraries.xdme < prev    next >
Text File  |  1995-08-01  |  855b  |  29 lines

  1. /* $VER: AddLibraries.xdme 1.0 (01 Aug 1995) */
  2. /* Copyright © 1995 Fergus Duniho */
  3. /* This adds the ARexx libraries used by XES. */
  4.  
  5. if exists("libs:rexxsupport.library") then do
  6.     if ~show("L","rexxsupport.library") then
  7.         call addlib("rexxsupport.library",0,-30,0)
  8. end
  9. else say "You need RexxSupport.library"
  10.  
  11. if exists("libs:rexxreqtools.library") then do
  12.     if ~show("L","rexxreqtools.library") then
  13.         call addlib("rexxreqtools.library",0,-30)
  14. end
  15. else say "You need RexxReqTools.library"
  16.  
  17. if exists("libs:rexxarplib.library") then do
  18.     if ~show("L","rexxarplib.library") then
  19.         call addlib("rexxarplib.library",0,-30)
  20. end
  21. else say "You need RexxArpLib.library"
  22.  
  23. if exists("libs:rxgen.library") then do
  24.     if ~show('L','rxgen.library') then
  25.         call addlib('rxgen.library',0,-30,0)
  26. end
  27. else say "You need rxgen.library"
  28.  
  29.